All Questions
1 question
1vote
1answer
167views
Should I stub hidden dependencies in Python unit tests
Python is very specific language which gives developer huge flexibility. So if I have class like this: class Car: def __init__(self, engine: Engine): self._engine = engine # dependency ...